home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / termmod.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.3 KB  |  38 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef TermModH
  7. #define TermModH
  8. //---------------------------------------------------------------------------
  9. #include <Windows.hpp>
  10. #include <Messages.hpp>
  11. #include <Sysutils.hpp>
  12. #include <Graphics.hpp>
  13. #include <Forms.hpp>
  14. #include <Dialogs.hpp>
  15. #include <Dbgrids.hpp>
  16. #include <Grids.hpp>
  17. #include <Classes.hpp>
  18. #include <Controls.hpp>
  19. #include <DBGrids.hpp>
  20. #include <ExtCtrls.hpp>
  21. #include <Grids.hpp>
  22. #include <StdCtrls.hpp>
  23. #include "CustMod.h"
  24. //---------------------------------------------------------------------------
  25. class TTerm : public TCust
  26. {
  27. __published:
  28.     void __fastcall FilterToggleClick(TObject *Sender);
  29.     void __fastcall FilterTextChange(TObject *Sender);
  30. private:        // private user declarations
  31. public:         // public user declarations
  32.     virtual __fastcall TTerm(TComponent* Owner);
  33. };
  34. //---------------------------------------------------------------------------
  35. extern TTerm *Term;
  36. //---------------------------------------------------------------------------
  37. #endif
  38.